home *** CD-ROM | disk | FTP | other *** search
-
- #import <appkit/View.h>
-
- @interface ImageView:View
- {
- id imageList;
- id image; /* NXBitmapImageRep of current picture */
- NXPoint scaleFactor; /* current scaling factor of image */
- double period;
- id periodText;
- id slider;
- DPSTimedEntry te;
- BOOL animating;
- }
-
- /* INIT/FREE METHODS */
-
- - initFrame:(NXRect *)frameRect;
- - free;
-
-
-
- /* PRIVATE METHODS */
-
- - setListToFiles:(const char *const *) filenames;
-
- - setImageToFile:(const char *)imageName;
- - drawSelf:(NXRect *)rects :(int)rectCount;
- - next:sender;
- - animate:sender;
- - setSpeed:sender;
-
- @end
-